home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / portlib.lzh / PORTLIB / LASTLOG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-28  |  199 b   |  15 lines

  1. /*
  2.  * lastlog.h 1.0 for MiNT, taken from MiNTOS V1.3
  3.  */
  4.  
  5. #ifndef _LASTLOG_H_
  6. #define _LASTLOG_H_
  7.  
  8. struct lastlog {
  9.     time_t    ll_time;
  10.     char    ll_line[8];
  11.     char    ll_host[16];
  12. };
  13.  
  14. #endif /* _LASTLOG_H_ */
  15.